home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / debug / memlib.lha / READ.ME < prev    next >
Text File  |  1996-05-16  |  579b  |  26 lines

  1. To see MemLib in action, do the following:
  2.  
  3. 1. Compile and link the example program:
  4.  
  5.       sc example.c link
  6.       
  7. 2. Run the example program:
  8.  
  9.       example
  10.       
  11.    Note that nothing seems to happen.  The program has several bugs, but
  12.    they don't get caught!
  13.  
  14. 3. Recompile, but this time enable memory debugging:
  15.  
  16.       sc example.c link define MWDEBUG=1 lib memwatch.lib
  17.  
  18. 4. Run the program again:
  19.  
  20.       example
  21.  
  22.    This time the MemWatch library caught the errors and told you
  23.    exactly where they occurred.
  24.  
  25. See the file "memlib.doc" for information on using memlib.
  26.